home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-07-28 | 945 b | 47 lines | [TEXT/MPS ] |
- /*
- File: Comparable.cp
-
- Copyright: © 1991-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Part of the AOCE Sample SMSAM Package. Consult the license
- which came with this software for your specific legal rights.
-
- */
-
-
-
- #ifndef __COMPARABLE__
- #include "Comparable.h"
- #endif
-
- #ifndef __FSTREAM__
- #include "FStream.h"
- #endif
-
- /***********************************|****************************************/
-
- #pragma segment Comparable
-
- /***********************************|****************************************/
-
- AComparable::AComparable ()
- {
- }
-
- /***********************************|****************************************/
-
- AComparable::~AComparable ()
- {
- }
-
- /***********************************|****************************************/
-
- ostream&
- AComparable::operator >> ( ostream& stream ) const
- {
- return stream << "AComparable: " << (void*) this;
- }
-
- /***********************************|****************************************/
-